home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / int32.h < prev    next >
C/C++ Source or Header  |  1999-03-14  |  11KB  |  228 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: int32.h 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 09/05/1997  
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The INT32 class is used to represent 32 bit signed integers
  32. independently of the operating system or hardware platform used.
  33. It works by separating a 32-bit value into four separate byte
  34. values and reordering the bytes lowest-order to highest-order.
  35. An INT32 type has a base 10 positive limit of 2,147,483,647 and
  36. a negative limit of 2,147,483,648.
  37. */
  38. // ----------------------------------------------------------- //   
  39. #ifndef __INT32_HPP__
  40. #define __INT32_HPP__
  41.  
  42. #include "dtypes.h"
  43.  
  44. // Data structure for signed 32 bit integer values.
  45. class INT32
  46. {
  47. public:
  48.   INT32(__LWORD__ val = 0);
  49.   INT32(const INT32& ob);
  50.   INT32& operator=(const INT32& ob);
  51.   INT32& operator=(const __LWORD__ ob);
  52.  
  53. public:
  54.   void UnPackBits(__LWORD__ val);
  55.   __LWORD__ PackBits() const;
  56.  
  57. public:
  58.   operator __LWORD__() const;
  59.   
  60. public: // Arithmetic operators that modify their operand
  61.   INT32 operator++(int);  // Postfix
  62.   INT32 operator--(int);  // Postfix
  63.   INT32 &operator++() { operator=(*this + 1); return *this; } // Prefix
  64.   INT32 &operator--() { operator=(*this - 1); return *this; } // Prefix
  65.   void operator+=(const INT32 &i) { operator=(*this + i); }
  66.   void operator-=(const INT32 &i) { operator=(*this - i); }
  67.   void operator*=(const INT32 &i) { operator=(*this * i); }
  68.   void operator/=(const INT32 &i);
  69.  
  70.   void operator+=(const __LWORD__ &i) { operator=(*this + i); }
  71.   void operator-=(const __LWORD__ &i) { operator=(*this - i); }
  72.   void operator*=(const __LWORD__ &i) { operator=(*this * i); }
  73.   void operator/=(const __LWORD__ &i);
  74.  
  75.   void operator+=(const __ULWORD__ &i) { operator=(*this + i); }
  76.   void operator-=(const __ULWORD__ &i) { operator=(*this - i); }
  77.   void operator*=(const __ULWORD__ &i) { operator=(*this * i); }
  78.   void operator/=(const __ULWORD__ &i);
  79.  
  80.   void operator+=(const __WORD__ &i) { operator=(*this + i); }
  81.   void operator-=(const __WORD__ &i) { operator=(*this - i); }
  82.   void operator*=(const __WORD__ &i) { operator=(*this * i); }
  83.   void operator/=(const __WORD__ &i);
  84.  
  85.   void operator+=(const __SWORD__ &i) { operator=(*this + i); }
  86.   void operator-=(const __SWORD__ &i) { operator=(*this - i); }
  87.   void operator*=(const __SWORD__ &i) { operator=(*this * i); }
  88.   void operator/=(const __SWORD__ &i);
  89.  
  90.   void operator+=(const __UWORD__ &i) { operator=(*this + i); }
  91.   void operator-=(const __UWORD__ &i) { operator=(*this - i); }
  92.   void operator*=(const __UWORD__ &i) { operator=(*this * i); }
  93.   void operator/=(const __UWORD__ &i);
  94.  
  95.   void operator+=(const __USWORD__ &i) { operator=(*this + i); }
  96.   void operator-=(const __USWORD__ &i) { operator=(*this - i); }
  97.   void operator*=(const __USWORD__ &i) { operator=(*this * i); }
  98.   void operator/=(const __USWORD__ &i);
  99.  
  100.   void operator+=(const __SBYTE__ &i) { operator=(*this + (__LWORD__)i); }
  101.   void operator-=(const __SBYTE__ &i) { operator=(*this - (__LWORD__)i); }
  102.   void operator*=(const __SBYTE__ &i) { operator=(*this * (__LWORD__)i); }
  103.   void operator/=(const __SBYTE__ &i);
  104.  
  105.   void operator+=(const __UBYTE__ &i) { operator=(*this + (__LWORD__)i); }
  106.   void operator-=(const __UBYTE__ &i) { operator=(*this - (__LWORD__)i); }
  107.   void operator*=(const __UBYTE__ &i) { operator=(*this * (__LWORD__)i); }
  108.   void operator/=(const __UBYTE__ &i);
  109.  
  110. public: // Comparison operators
  111.   friend int operator==(const INT32 &a, const INT32 &b);
  112.   friend int operator==(const INT32 &a, const __LWORD__ &bl);
  113.   friend int operator==(const __LWORD__ &al, const INT32 &b);
  114.   friend int operator==(const INT32 &a, const __ULWORD__ &bl);
  115.   friend int operator==(const __ULWORD__ &al, const INT32 &b);
  116.   friend int operator==(const INT32 &a, const __WORD__ &bl);
  117.   friend int operator==(const __WORD__ &al, const INT32 &b);
  118.   friend int operator==(const INT32 &a, const __SWORD__ &bl);
  119.   friend int operator==(const __SWORD__ &al, const INT32 &b);
  120.   friend int operator==(const INT32 &a, const __UWORD__ &bl);
  121.   friend int operator==(const __UWORD__ &al, const INT32 &b);
  122.   friend int operator==(const INT32 &a, const __USWORD__ &bl);
  123.   friend int operator==(const __USWORD__ &al, const INT32 &b);
  124.   friend int operator==(const INT32 &a, const __SBYTE__ &bl);
  125.   friend int operator==(const __SBYTE__ &al, const INT32 &b);
  126.   friend int operator==(const INT32 &a, const __UBYTE__ &bl);
  127.   friend int operator==(const __UBYTE__ &al, const INT32 &b);
  128.  
  129.   friend int operator!=(const INT32 &a, const INT32 &b);
  130.   friend int operator!=(const INT32 &a, const __LWORD__ &bl);
  131.   friend int operator!=(const __LWORD__ &al, const INT32 &b);
  132.   friend int operator!=(const INT32 &a, const __ULWORD__ &bl);
  133.   friend int operator!=(const __ULWORD__ &al, const INT32 &b);
  134.   friend int operator!=(const INT32 &a, const __WORD__ &bl);
  135.   friend int operator!=(const __WORD__ &al, const INT32 &b);
  136.   friend int operator!=(const INT32 &a, const __SWORD__ &bl);
  137.   friend int operator!=(const __SWORD__ &al, const INT32 &b);
  138.   friend int operator!=(const INT32 &a, const __UWORD__ &bl);
  139.   friend int operator!=(const __UWORD__ &al, const INT32 &b);
  140.   friend int operator!=(const INT32 &a, const __USWORD__ &bl);
  141.   friend int operator!=(const __USWORD__ &al, const INT32 &b);
  142.   friend int operator!=(const INT32 &a, const __SBYTE__ &bl);
  143.   friend int operator!=(const __SBYTE__ &al, const INT32 &b);
  144.   friend int operator!=(const INT32 &a, const __UBYTE__ &bl);
  145.   friend int operator!=(const __UBYTE__ &al, const INT32 &b);
  146.  
  147.   friend int operator<(const INT32 &a, const INT32 &b);
  148.   friend int operator<(const INT32 &a, const __LWORD__ &bl);
  149.   friend int operator<(const __LWORD__ &al, const INT32 &b);
  150.   friend int operator<(const INT32 &a, const __ULWORD__ &bl);
  151.   friend int operator<(const __ULWORD__ &al, const INT32 &b);
  152.   friend int operator<(const INT32 &a, const __WORD__ &bl);
  153.   friend int operator<(const __WORD__ &al, const INT32 &b);
  154.   friend int operator<(const INT32 &a, const __SWORD__ &bl);
  155.   friend int operator<(const __SWORD__ &al, const INT32 &b);
  156.   friend int operator<(const INT32 &a, const __UWORD__ &bl);
  157.   friend int operator<(const __UWORD__ &al, const INT32 &b);
  158.   friend int operator<(const INT32 &a, const __USWORD__ &bl);
  159.   friend int operator<(const __USWORD__ &al, const INT32 &b);
  160.   friend int operator<(const INT32 &a, const __SBYTE__ &bl);
  161.   friend int operator<(const __SBYTE__ &al, const INT32 &b);
  162.   friend int operator<(const INT32 &a, const __UBYTE__ &bl);
  163.   friend int operator<(const __UBYTE__ &al, const INT32 &b);
  164.  
  165.   friend int operator>(const INT32 &a, const INT32 &b);
  166.   friend int operator>(const INT32 &a, const __LWORD__ &bl);
  167.   friend int operator>(const __LWORD__ &al, const